 /* Main Styles */
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header.top {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 999;
        }
        
        .logo img {
            transition: all 0.3s ease;
        }
        
        .logo img:hover {
            transform: scale(1.05);
        }
        
        .social-icons a {
            color: #333;
            font-size: 18px;
            margin-left: 15px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #e83e8c;
            transform: translateY(-3px);
        }
       
         
        .banner-home {
            height: auto;
            padding-top: 200px;
        }

        
        /* Container adjustment */
        .container {
            padding-left: 15px;
            padding-right: 15px;
            max-width: 1140px;
            margin: 0 auto;
        }
        
        /* Satsang Cards */
        .satsang-card {
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background: #fff;
        }
        
        .satsang-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .satsang-date {
            background-color: #f8f9fa;
            padding: 15px;
            text-align: center;
            border-right: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .satsang-date .day {
            font-size: 40px;
            font-weight: 700;
            color: #e83e8c;
            line-height: 1;
        }
        
        .satsang-date .month {
            font-size: 40px;
            color: #666;
            text-transform: uppercase;
            margin: 5px 0;
        }
        
        .satsang-date .year {
            font-size: 40px;
            color: #999;
        }
        
        .satsang-info {
            padding: 20px;
        }
        
        .satsang-info h4 {
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .satsang-info h4 .city {
            color: #e83e8c;
            font-weight: 700;
        }
        
        .satsang-info p {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* Footer Styles */
        footer.contact {
            background: #f8f9fa;
            padding: 50px 0 0;
            position: relative;
        }
        
        .gradient {
            height: 5px;
            background: linear-gradient(to right, #e83e8c, #6f42c1);
        }
        
        .copyright {
            padding: 20px 0;
            background: #333;
            color: #fff;
        }
        
        .copyright a {
            color: #fff;
        }
        
        .copyright a:hover {
            color: #e83e8c;
            text-decoration: none;
        }
        
        .right-part ul {
            display: flex;
            justify-content: flex-end;
            list-style: none;
            padding: 0;
            margin: 0 0 15px;
        }
        
        .right-part ul li {
            margin: 0 10px;
        }
        
        .hidden-xs {
            display: inline-block;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .satsang-date {
                flex-direction: row;
                align-items: center;
                justify-content: space-around;
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            
            .right-part ul {
                justify-content: center;
            }
            
            .banner-another {
                height: 200px;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }